home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / GrowBoxDock / Sources / Dutch.lproj / AboutBox.r next >
Encoding:
Text File  |  2001-02-18  |  1.3 KB  |  63 lines

  1. /*
  2.     File:        AboutBox.r
  3.  
  4.     Contains:    About box for simple text application
  5.  
  6.     Written by:    Tom Dowdy
  7.  
  8.     Copyright:    © 1993, 1995, 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.     $Log: AboutBox.r,v $
  13.     Revision 1.3  2000/07/27 21:17:17  mig
  14.     using "flat" inclides of Carbon.h (available thru System framework headers)
  15.     
  16.     Revision 1.2  2000/07/18 23:34:22  mig
  17.     headers clean-up (mostly header-style includes)
  18.     
  19.     Revision 1.1  2000/06/09 01:09:17  mig
  20.     make files localizable (removed from root directory, added to this one)
  21.     
  22.     Revision 1.1.1.1  1998/03/18 22:56:00  ivory
  23.     Initial checkin of SimpleText.
  24.     
  25.  * 
  26.  * 2     7/30/97 3:42 PM Tom Dowdy
  27.  * Live scrolling now
  28.  * 
  29.  * 1     7/28/97 11:11 AM Duane Byram
  30.  * first added to Source Safe project
  31.  
  32.          <1>     8/21/95    TD        First checked in.
  33.  
  34. */
  35.  
  36.  
  37. #include "AboutBox.h"
  38.  
  39. #ifdef USE_UMBRELLA_HEADERS && USE_UMBRELLA_HEADERS
  40. #include "Carbon.r"
  41. #else
  42. #include "MacWindows.r"
  43. #include "MacTypes.r"
  44. #endif
  45.  
  46. #include "Localize.r"
  47.  
  48. resource 'WIND' (kAboutWindowID, purgeable) {
  49.     {100, 100, 215, 400}, noGrowDocProc, invisible, goAway, 0, ABOUTBOXTITLE, alertPositionMainScreen
  50. };
  51.  
  52.  
  53. resource 'STR#' (kAboutStrings, purgeable) {
  54.     {
  55.     ABOUTSTRING1;
  56.     ABOUTSTRING2;
  57.     ABOUTSTRING3;
  58.     ABOUTSTRING4;
  59.     ABOUTSTRING5;
  60.     ABOUTSTRING6;
  61.     };
  62. };
  63.